[USER (data scientist)]: Hey there! I've got this dataset of laptops, and I'm trying to find the ones with at least 8 GB of RAM. Can you help me out? Please generate a DataFrame to filter and visualize laptops with at least 8GB of RAM from the 'laptops_price.csv' dataset.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import pickle

laptops_price = pd.read_csv("laptops_price.csv")

# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE]
</code1>
# YOUR SOLUTION END:

print(laptops_at_least_8gb_ram)

# save data
pickle.dump(laptops_at_least_8gb_ram,open("./pred_result/laptops_at_least_8gb_ram.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Absolutely! Here's the code to filter laptops with at least 8 GB of RAM: 
